Dynomotion

Group: DynoMotion Message: 5533 From: Henk Date: 8/14/2012
Subject: Setting DRO to 70 from kflop
Hi Tom,

When the probe is touched (input 135 on K.analog) I want to Set the Z-DRO in Mach3 to 70mm.
I know I need to use the persist.Userdata but can't get my head around it.
Could you give me a hand with the code please?

What to put on the kflop side

And what to put on the Mach3 side (if any).

Many thanks

Henk


Sent from my iPad
Group: DynoMotion Message: 5534 From: Michael Rosenfield Date: 8/14/2012
Subject: Re: Setting DRO to 70 from kflop
Also, how would this be done using KMotionCNC?
Thanks!

Michael Rosenfield
 
Group: DynoMotion Message: 5535 From: Tom Kerekes Date: 8/14/2012
Subject: Re: Setting DRO to 70 from kflop
Hi Henk,
 
Do you have Probing Working?  Have you seen this?
 
 
One method to set the Z DRO would be to use the G92 offsets.  So in the GCode after the Probe (and after moving the axis back to the probe trip point).  Add:
 
G92 Z70
 
Does this work for you?
 
Regards
TK
 
 
Group: DynoMotion Message: 5536 From: Tom Kerekes Date: 8/14/2012
Subject: Re: Setting DRO to 70 from kflop
Hi Mike,
 
As with Mach3 the simplest would be to add G92 Z70 after the probe is finished.
 
TK

Group: DynoMotion Message: 5537 From: Henk Date: 8/14/2012
Subject: Re: Setting DRO to 70 from kflop
Thanks for the quick reply.

I had a look at the probing script, and had some challenges, so I hoped there was an easier way.
I'll have to study it a bit more I guess. 
Most of my parts are mounted directly on the table, so setting a new tool to the probe height (touch plate 70mm above the table) would do the trick for me.

One other question:

Can I use the Pc speaker to generate a beep, I've seen that you have to include the "dos.h" header file and use the sound() statement, if so where can I find a dos.h that works in your compiler.

Many thanks

Henk


Sent from my iPad

On 14/08/2012, at 23:11, Tom Kerekes <tk@...> wrote:

 

Hi Henk,
 
Do you have Probing Working?  Have you seen this?
 
 
One method to set the Z DRO would be to use the G92 offsets.  So in the GCode after the Probe (and after moving the axis back to the probe trip point).  Add:
 
G92 Z70
 
Does this work for you?
 
Regards
TK
 
 
Group: DynoMotion Message: 5538 From: Tom Kerekes Date: 8/14/2012
Subject: Re: Setting DRO to 70 from kflop
Hi Henk,
 
I don't know what dos.h or sound() statement you are referring to.
 
Mach3 allows playing a Wave file from VB (Basic).  So you might create a M Code Macro that does something like:
 
PlayWave(“C:\WINDOWS\Media\Windows XP Startup.wav”)
 
You might need a sound card and speakers. I'm not sure if it will play to the PC speaker.
 
Regards
TK
 
 

Group: DynoMotion Message: 5544 From: Henk Date: 8/15/2012
Subject: Re: Setting DRO to 70 from kflop
Probing works fine now.

I would have liked to generate a beep if the probe is touched, or generate a sound when I jog close to or approach the soft limits.

Sent from my iPad

On 15/08/2012, at 11:05, Tom Kerekes <tk@...> wrote:

 

Hi Henk,
 
I don't know what dos.h or sound() statement you are referring to.
 
Mach3 allows playing a Wave file from VB (Basic).  So you might create a M Code Macro that does something like:
 
PlayWave(“C:\WINDOWS\Media\Windows XP Startup.wav”)
 
You might need a sound card and speakers. I'm not sure if it will play to the PC speaker.
 
Regards
TK
 
 

Group: DynoMotion Message: 5546 From: Tom Kerekes Date: 8/16/2012
Subject: Re: Setting DRO to 70 from kflop
Hi Henk,
 
It would probably be simplest to connect a beeper to a KFLOP Output.  You could then turn it on and off easily from a C program.
 
Otherwise maybe a Mach3 Macro Pump or "Brain" might be used to monitor a virtual IO bit and Play a wave file when the IO bit is detected.
 
Regards
TK

Group: DynoMotion Message: 5559 From: Henk Date: 8/16/2012
Subject: Re: Setting DRO to 70 from kflop
Understand,

Thanks for the great service.


Regards

Henk

Sent from my iPad

On 17/08/2012, at 1:29, Tom Kerekes <tk@...> wrote:

 

Hi Henk,
 
It would probably be simplest to connect a beeper to a KFLOP Output.  You could then turn it on and off easily from a C program.
 
Otherwise maybe a Mach3 Macro Pump or "Brain" might be used to monitor a virtual IO bit and Play a wave file when the IO bit is detected.
 
Regards
TK